home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000343_news@columbia.edu _Thu Dec 19 12:26:55 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.8.3/8.8.3) with ESMTP id MAA28981 for <kermit.misc@watsun.cc.columbia.edu>; Thu, 19 Dec 1996 12:26:55 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.8.3/8.8.3) id MAA24196 for kermit.misc@watsun; Thu, 19 Dec 1996 12:26:54 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Uploading Microcom firmware into Deskporte modem?
  8. Date: 19 Dec 1996 17:25:59 GMT
  9. Organization: Columbia University
  10. Lines: 50
  11. Message-ID: <59btr7$rr2$1@apakabar.cc.columbia.edu>
  12. References: <58siro$skk$1@apakabar.cc.columbia.edu> <32B5C865.17A@world.std.com> <594d5e$d0g$1@apakabar.cc.columbia.edu> <851011760.25717@dejanews.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Xref: news.columbia.edu comp.protocols.kermit.misc:6302
  15.  
  16. In article <851011760.25717@dejanews.com>,  <rwe@world.std.com> wrote:
  17. : In article <594d5e$d0g$1@apakabar.cc.columbia.edu>,
  18. :   fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  19. : > : Or is TRANSMIT just available in C-Kermit?
  20. : > It's in MS-DOS Kermit too.  Did you try it?
  21. : > It's the subject of Chapter 12.
  22. : > Just try it:
  23. : >  1. In CONNECT mode, type AT^H and then press the Enter key.
  24. : >  2. Escape back to the MS-DOS Kermit prompt with Alt-X.
  25. : >  3. Type "transmit xxx", where xxx is the filename.
  26. : > 
  27. : > I'm not sure what you're supposed to do to indicate to the modem that
  28. : > the transfer is complete, but I assume you have directions for that.
  29. : > 
  30. : > If the above works, you're done.  If it doesn't, then read about the SET
  31. : > TRANSMIT command to customize how TRANSMIT works.  If it still doesn't
  32. : > work, get back to us with specific symptoms, questions, etc.
  33. : I did try it. At first, I thought the SET PROMPT \0 (binary "0" prompt
  34. : referred to the SENDING terminal host.
  35. :
  36. No, it just tells Kermit not to wait for any prompt (response, echo) at all
  37. after sending a line before it sends the next line.  This is, of course,
  38. assuming that the file you are TRANSMIT'ing has lines at all.
  39.  
  40. : For whatever reason, the eerom device
  41. : doesn't issue back the <cr> character, and sitting there and issuing
  42. : "carriage returns" (pressing enter key, etc.)  just won't cut the mustard on
  43. : this one (the file is 300K+ bytes arranged on 32 character lines).
  44. :
  45. Normally the TRANSMIT command waits for a linefeed (ASCII 10) before sending
  46. the next line.  If the EEROM (EEPROM?) echos something else, then specify
  47. that in your SET TRANSMIT PROMPT command.  Hint:  Use SET DEBUG SESSION to
  48. see invisible control characters.  Maybe it uses Ctrl-Q or something.
  49. If it doesn't echo anything specific after receiving each line, then the only
  50. other choice is to SET TRANSMIT PROMPT \0 and hope for the best.  That should
  51. make Kermit simply blast the entire file out the port.  (The only difference
  52. between this and "copy /b filename com1" in DOS is that Kermit provides
  53. flow control -- in case the modem also knows how to do it.)
  54.  
  55. By the way, you didn't say much about the format of the file.  If it contains
  56. any 8-bit characters, be sure to "set terminal byte 8" and "set terminal
  57. character-set transparent".
  58.  
  59. : On another tone. Kermit 95. Does it use the Windows 95 TAPI or the default
  60. : COMM.DRV printer driver?
  61. Sorry, not yet.
  62.  
  63. - Frank